6bebc9643df87ceed2b6ec60534bde24e4a3253f,zhtml/src/com/potix/zhtml/Input.java,Input,getValue,#,42

Before Change


	/** Returns the value of this input.
	 */
	public String getValue() {
		return getDynamicProperty("value");
	}
	/** Sets the vallue of this input.
	 */

After Change


	/** Returns the value of this input.
	 */
	public String getValue() {
		return (String)getDynamicProperty("value");
	}
	/** Sets the vallue of this input.
	 */